-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add(#751): add support for github actions #775
base: master
Are you sure you want to change the base?
Conversation
a7674ec
to
9df23b1
Compare
@indiVar0508 This looks good. I have few more task additions.
Also feel free to explore any other tools you seem fit for this and we can discuss here further. |
aacbaf4
to
48ddcae
Compare
Hi @ananyo2012 , Added coverage step and to report it in PR comment which will be update for each run. I tried adding testing-report but it seems to be failing ig due to the format which is not acceptable by the test-reporter action, getting error in reading file with jest-junit. |
@indiVar0508 Please check https://github.com/marketplace/actions/publish-test-results as an alternative for test-reporting |
12d5265
to
de0c0b8
Compare
Thanks @ananyo2012 , |
@indiVar0508 You need to create a separate workflow for Publishing Results - https://github.com/EnricoMi/publish-unit-test-result-action/blob/v2.8.0/README.md#support-fork-repositories-and-dependabot-branches . Let's Name the first Workflow as 'CI' and second one as 'Test Report'. Also the Pull request comments should only run during Pull request events, not for master branch. |
4eed168
to
69af5e2
Compare
- created workflow directory and test.yml workflow - added a job that executes existing compose.test.yml file to run tests - job will be triggered when a PR is raised to master or push happens to master ( post merge also will trigger a job ) - added concurrency check so that old job can be cancelled if a new push happens
4978255
to
f1fdfb9
Compare
followed steps specified in below mentioned link to do the setup https://github.com/EnricoMi/publish-unit-test-result-action/blob/v2.8.0/README.md#support-fork-repositories-and-dependabot-branches
Added as per comments @ananyo2012
|
No description provided.